home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / GIMP 2.6.8 / gimp-2.6.8-i686-setup.exe / {app} / share / gimp / 2.0 / scripts / truchet.scm < prev    next >
Text File  |  2009-12-15  |  6KB  |  173 lines

  1. ; GIMP - The GNU Image Manipulation Program
  2. ; Copyright (C) 1995 Spencer Kimball and Peter Mattis
  3. ;
  4. ; This program is free software; you can redistribute it and/or modify
  5. ; it under the terms of the GNU General Public License as published by
  6. ; the Free Software Foundation; either version 2 of the License, or
  7. ; (at your option) any later version.
  8. ;
  9. ; This program is distributed in the hope that it will be useful,
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. ; GNU General Public License for more details.
  13. ;
  14. ; You should have received a copy of the GNU General Public License
  15. ; along with this program; if not, write to the Free Software
  16. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. ;
  18. ;    Truchet  - a script to create Truchet patterns
  19. ;                 by Adrian Likins <aklikins@eos.ncsu.edu>
  20. ;                 http://www4.ncsu.edu/~aklikins/
  21. ;    version about .8 give or take
  22. ;
  23. ;  Lots of thanks to Quartic for his help.
  24. ;
  25. ;
  26. ;         The utility of this script is left as an exercise for the reader.
  27. ;
  28. ;  NOTE: This script works best with even values for 'thickness'.
  29.  
  30. (define (center-ellipse img cx cy rx ry op aa feather frad)
  31.   (gimp-ellipse-select img (- cx rx) (- cy ry) (+ rx rx ) (+ ry ry )
  32.                        op aa feather frad)
  33. )
  34.  
  35. (define (use-tiles img drawable height width img2 drawable2 xoffset yoffset)
  36.   (gimp-edit-copy drawable2)
  37.   (let ((floating-sel (car (gimp-edit-paste drawable FALSE))))
  38.     (gimp-layer-set-offsets floating-sel xoffset yoffset)
  39.     (gimp-floating-sel-anchor floating-sel)
  40.   )
  41. )
  42.  
  43.  
  44. (define (create-tiles img drawable1 drawable2 size thickness backcolor forecolor)
  45.   (let* (
  46.         (half-thickness (/ thickness 2))
  47.         (outer-radius (+ (/ size 2) half-thickness))
  48.         (inner-radius (- (/ size 2) half-thickness))
  49.         )
  50.  
  51.     (gimp-selection-all img)
  52.     (gimp-context-set-background backcolor)
  53.     (gimp-edit-fill drawable1 BACKGROUND-FILL)
  54.  
  55.     (let* (
  56.           (tempSize (* size 3))
  57.           (temp-img (car (gimp-image-new tempSize tempSize RGB)))
  58.           (temp-draw (car (gimp-layer-new temp-img tempSize tempSize RGB-IMAGE "Jabar" 100 NORMAL-MODE)))
  59.          )
  60.       (gimp-image-undo-disable temp-img)
  61.       (gimp-image-add-layer temp-img temp-draw 0)
  62.       (gimp-context-set-background backcolor)
  63.       (gimp-edit-fill temp-draw BACKGROUND-FILL)
  64.  
  65.  
  66.       (center-ellipse temp-img size size outer-radius outer-radius CHANNEL-OP-REPLACE TRUE FALSE 0)
  67.       (center-ellipse temp-img size size inner-radius inner-radius CHANNEL-OP-SUBTRACT TRUE FALSE 0)
  68.  
  69.       (center-ellipse temp-img (* size 2) (*  size 2)  outer-radius outer-radius CHANNEL-OP-ADD TRUE FALSE 0)
  70.       (center-ellipse temp-img (* size 2) (*  size 2)  inner-radius inner-radius CHANNEL-OP-SUBTRACT TRUE FALSE 0)
  71.       (gimp-context-set-background forecolor)
  72.       (gimp-edit-fill temp-draw BACKGROUND-FILL)
  73.  
  74.       (gimp-selection-none temp-img)
  75.  
  76.       (gimp-image-resize temp-img size size (- size) (- size))
  77.       ; woo hoo it works....finally...
  78.  
  79.  
  80.       (gimp-selection-all temp-img)
  81.       (gimp-edit-copy temp-draw)
  82.       (let ((floating-sel (car (gimp-edit-paste drawable2 FALSE))))
  83.         (gimp-floating-sel-anchor floating-sel))
  84.  
  85.  
  86.       (let ((floating-sel (car (gimp-edit-paste drawable1 FALSE))))
  87.         (gimp-floating-sel-anchor floating-sel))
  88.  
  89.       (let ((drawble (car (gimp-drawable-transform-flip-simple drawable1
  90.                              ORIENTATION-VERTICAL TRUE 0 TRUE)))))
  91.  
  92.  
  93.       ;(gimp-display-new temp-img)
  94.       (gimp-image-delete temp-img)
  95.     )
  96.   )
  97. )
  98.  
  99.  
  100. (define (script-fu-truchet size thickness backcolor forecolor xtiles ytiles)
  101.   (let* (
  102.         (width (* size xtiles))
  103.         (height (* size ytiles))
  104.         (img (car (gimp-image-new width height RGB)))
  105.         (tile (car (gimp-image-new size size RGB)))
  106.         (layer-one (car (gimp-layer-new img width height
  107.                                         RGB-IMAGE "Rambis" 100 NORMAL-MODE)))
  108.         (tiledraw1 (car (gimp-layer-new tile size size
  109.                                         RGB-IMAGE "Johnson" 100 NORMAL-MODE)))
  110.         (tiledraw2 (car (gimp-layer-new tile size size
  111.                                         RGB-IMAGE "Cooper" 100 NORMAL-MODE)))
  112.         (Xindex 0)
  113.         (Yindex 0)
  114.         )
  115.  
  116.     (gimp-context-push)
  117.  
  118.     (gimp-image-undo-disable img)
  119.     (gimp-image-undo-disable tile)
  120.  
  121.     (gimp-image-add-layer img layer-one 0)
  122.     (gimp-image-add-layer tile tiledraw1 0)
  123.     (gimp-image-add-layer tile tiledraw2 0)
  124.  
  125.  
  126.     ;just to look a little better
  127.     (gimp-selection-all img)
  128.     (gimp-context-set-background backcolor)
  129.     (gimp-edit-fill layer-one BACKGROUND-FILL)
  130.     (gimp-selection-none img)
  131.  
  132.     (create-tiles tile tiledraw1 tiledraw2 size thickness backcolor forecolor)
  133.  
  134.  
  135.     (while (<= Xindex xtiles)
  136.       (while (<= Yindex ytiles)
  137.         (if (= (rand 2) 0)
  138.             (use-tiles img layer-one height width tile tiledraw1 (* Xindex size) (* Yindex size))
  139.             (use-tiles img layer-one height width tile tiledraw2 (* Xindex size) (* Yindex size))
  140.         )
  141.         (set! Yindex (+ Yindex 1))
  142.       )
  143.       (set! Yindex 0)
  144.       (set! Xindex (+ Xindex 1))
  145.     )
  146.  
  147.  
  148.     (gimp-image-delete tile)
  149.     (gimp-image-undo-enable img)
  150.     (gimp-display-new img)
  151.  
  152.     (gimp-context-pop)
  153.   )
  154. )
  155.  
  156. (script-fu-register "script-fu-truchet"
  157.   _"T_ruchet..."
  158.   _"Create an image filled with a Truchet pattern"
  159.   "Adrian Likins <aklikins@eos.ncsu.edu>"
  160.   "Adrian Likins"
  161.   "1997"
  162.   ""
  163.   SF-ADJUSTMENT _"Block size"        '(32 2 512 1 10 1 1)
  164.   SF-ADJUSTMENT _"Thickness"         '(2 1 512 1 10 1 1)
  165.   SF-COLOR      _"Background color"  "white"
  166.   SF-COLOR      _"Foreground color"  "black"
  167.   SF-ADJUSTMENT _"Number of X tiles" '(5 1 512 1 10 1 1)
  168.   SF-ADJUSTMENT _"Number of Y tiles" '(5 1 512 1 10 1 1)
  169. )
  170.  
  171. (script-fu-menu-register "script-fu-truchet"
  172.                          "<Image>/File/Create/Patterns")
  173.